#home_pro.team ul{
    display: flex;
    flex-wrap:wrap;
    margin:-10px;
}

#home_pro.team ul li {
    width: auto;
    flex: 0 0 33.333333%;
    margin-right: unset;
    margin-bottom: 15px;
    overflow: hidden;
    float: unset;
    padding: 10px;
    box-sizing: border-box;
    height: 210px;
}

#home_pro.team ul li img{
    width:100%;
    height: 100%;
    border:none;
}

#listmenu li a.active{
    color:#f60;
    font-weight: bold;
}

.home_left{
    margin-top: 25px;
}

.person-card a{
    background-color: #f7f7f7;
    display: flex;
    transition: all .2s;
}

.person-card a:hover{
    background-color: #eee;
    color:#555;
    text-decoration: none;
}

.person-card .intro{
    padding: 10px;
    flex: 0 0 50%;
    box-sizing: border-box;
}

.person-card .name{
    font-size: 18px;
    font-weight: 600;
}

.person-card .content{
    line-height: 1.8;
    color: #888;
    font-size: 14px;
    margin-top: 6px;
    text-overflow: -o-ellipsis-lastline;
	overflow: hidden;			
	text-overflow: ellipsis;		
	display: -webkit-box;		
	-webkit-line-clamp: 6;		
	line-clamp: 6;					
	-webkit-box-orient: vertical;
}